home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / igc.h < prev    next >
C/C++ Source or Header  |  1996-09-21  |  3KB  |  80 lines

  1. /* Copyright (C) 1994, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* igc.h */
  20. /* Internal interfaces in Ghostscript GC */
  21.  
  22. /* Define the procedures shared among a "genus" of structures. */
  23. /* Currently there are only two genera: refs, and all other structures. */
  24. struct struct_shared_procs_s {
  25.  
  26.     /* Clear the relocation information in an object. */
  27.  
  28. #define gc_proc_clear_reloc(proc)\
  29.   void proc(P2(obj_header_t *pre, uint size))
  30.     gc_proc_clear_reloc((*clear_reloc));
  31.  
  32.     /* Compute any internal relocation for a marked object. */
  33.     /* Return true if the object should be kept. */
  34.     /* The reloc argument shouldn't be required, */
  35.     /* but we need it for ref objects. */
  36.  
  37. #define gc_proc_set_reloc(proc)\
  38.   bool proc(P3(obj_header_t *pre, uint reloc, uint size))
  39.     gc_proc_set_reloc((*set_reloc));
  40.  
  41.     /* Compact an object. */
  42.  
  43. #define gc_proc_compact(proc)\
  44.   void proc(P3(obj_header_t *pre, obj_header_t *dpre, uint size))
  45.     gc_proc_compact((*compact));
  46.  
  47. };
  48.  
  49. /* Define the structure for holding GC state. */
  50. /*typedef struct gc_state_s gc_state_t;*/    /* in gsstruct.h */
  51. struct gc_state_s {
  52.     chunk_locator_t loc;
  53.     vm_spaces spaces;
  54.     int min_collect;    /* avm_space */
  55.     bool relocating_untraced;    /* if true, we're relocating */
  56.                     /* pointers from untraced spaces */
  57. };
  58.  
  59. /* Exported by igcref.c for igc.c */
  60. void ptr_ref_unmark(P2(void *, gc_state_t *));
  61. bool ptr_ref_mark(P2(void *, gc_state_t *));
  62. /*ref_packed *gs_reloc_ref_ptr(P2(const ref_packed *, gc_state_t *));*/
  63.  
  64. /* Exported by ilocate.c for igc.c */
  65. void ialloc_validate_memory(P2(const gs_ref_memory_t *, gc_state_t *));
  66. void ialloc_validate_chunk(P2(const chunk_t *, gc_state_t *));
  67. void ialloc_validate_object(P3(const obj_header_t *, const chunk_t *,
  68.   gc_state_t *));
  69.  
  70. /* Macro for returning a relocated pointer */
  71. #ifdef DEBUG
  72. void *print_reloc_proc(P3(const void *obj, const char *cname, void *robj));
  73. #  define print_reloc(obj, cname, nobj)\
  74.     (gs_debug_c('9') ? print_reloc_proc(obj, cname, nobj) :\
  75.      (void *)(nobj))
  76. #else
  77. #  define print_reloc(obj, cname, nobj)\
  78.     (void *)(nobj)
  79. #endif
  80.